home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / bmdist.arc / MS.MK < prev    next >
Text File  |  1988-04-12  |  778b  |  37 lines

  1. #
  2. #    Makefile for Bdale's Mailer
  3. #    
  4. #    for more info see bm.doc and smtp.doc in the documentation package
  5. #    if you change the makefile, do a make clean before you do a make.
  6. #    This makefile for Microsoft C using ndmake.
  7. #
  8.  
  9. CFLAGS= -DMSDOS -DMICROSOFT
  10. HDRS=    bm.h header.h
  11. OBJS=    main.obj send.obj pc.obj bmutil.obj version.obj header.obj \
  12.     files.obj getopt.obj
  13.  
  14. all:    mbm.exe 
  15.     
  16. mbm.exe:  $(OBJS)
  17.     link /NOI /STACK:8192 $(OBJS), mbm.exe;
  18.  
  19. clean:
  20.     del *.obj
  21.     del *.exe
  22.     del *.sym
  23. #
  24. # dependencies - please keep up to date!
  25. #
  26. bmutil.obj:    bmutil.c bm.h header.h
  27. pc.obj:    pc.c
  28. main.obj:     main.c bm.h
  29. send.obj:    send.c bm.h
  30. header.obj:    header.c header.h
  31. files.obj:    files.c
  32. getopt.obj:    getopt.c
  33.  
  34. .c.obj:
  35.     cl -c ${CFLAGS} $<
  36. .SUFFIXES: .exe .obj .c .asm
  37.